home *** CD-ROM | disk | FTP | other *** search
/ Freaks Macintosh Archive / Freaks Macintosh Archive.bin / Freaks Macintosh Archives / Textfiles / Hacking / FTP Hacking.sit / FTP Hacking ƒ / FTP Hacking.rsrc / TEXT_132.txt < prev    next >
Text File  |  1998-06-14  |  1KB  |  24 lines

  1. Winnuke.c (UNIX)
  2.  
  3.      If you are cool, you'll have a shell account somewhere. (If you are really cool you'll have UNIX running on your own computer.)  Anyway, this is a better alternative to using your Mac because if you nuke somebody through telnet, it doesn't tie up your computer.  (You can even write a shell script to do it again and again and again, but I won't show you that...)
  4.  
  5.      Okay, using Fetch (My FTP prog of choice), upload "winnuke.c" to your directory. Now, telnet to your shell. Once you are in, type:
  6.  
  7. % cc -o nuke winnuke.c
  8.  
  9. % = The C-shell prompt.
  10. cc = The command to compile.
  11. -o =  Means "Name the program <name that follows"
  12. nuke = What we named our program.
  13. winnuke.c = What we compiled.
  14.  
  15.      NOTE: This program is only guaranteed to work on BSD, Linux and SunOS.
  16.  
  17. Now, to execute it, type: 
  18.  
  19. % ./nuke microsoft.com
  20.  
  21.      NOTE: "./nuke" is 1 word.  This is how you execute a custom program in UNIX. ANOTHER NOTE:  I'm actually not sure about the dot-slash thing. I only have experience with BSD, so I'm not sure if the Linux/SunOS command is different.
  22.  
  23. By The Weasel
  24. weasel@weasel.org